home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
Classes
/
XText
/
combine-files
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-05-02
|
139 b
|
7 lines
#!/bin/csh -f -b
foreach f ($*)
echo "// (beginning of $f)"
awk '/^#import "/{y=1;next}/^#import </{y=1}y==1' $f
echo "// (end of $f)"
end